home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
lisp
/
stk-3.002
/
stk-3
/
STk-3.1
/
Contrib
/
STk-wtour
/
lessons
/
canvas-animate.stk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-13
|
216 b
|
13 lines
;;; Animation!
(pack (canvas '.c1) :expand #t :fill "both")
(.c1 'create 'rectangle 10 10 40 40 :fill "red" :tag "item")
(let do-update ()
(.c1 'move 'item 1 1)
(after 50 (lambda ()
(catch (do-update)))))